home *** CD-ROM | disk | FTP | other *** search
- unit Unit4;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, Iabuttns, Iaconn, Iaexctls, Spin, Mask;
-
- type
- TForm1 = class(TForm)
- IAMaskEdit1: TIAMaskEdit;
- IASpinEdit1: TIASpinEdit;
- IAScrollBar1: TIAScrollBar;
- IASource1: TIASource;
- IASRBitBtn1: TIASRBitBtn;
- IASRBitBtn2: TIASRBitBtn;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- procedure FormCreate(Sender: TObject);
- procedure IAScrollBar1Change(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- IASource1.UpdateControls;
- Label1.Caption:=IntToStr(IAScrollBar1.Position);
- end;
-
- procedure TForm1.IAScrollBar1Change(Sender: TObject);
- begin
- Label1.Caption:=IntToStr(IAScrollBar1.Position);
- end;
-
- end.
-